Overview

The Basket Service is a domain-centric microservice within our bounded context that implements a gRPC-based API architecture to manage the transient state of customer shopping carts. This service encapsulates the complete lifecycle of a basket aggregate, from creation through modification to eventual checkout processing.

As a core part of our Domain-Driven Design implementation, the Basket Service maintains its own dedicated Redis persistence store, ensuring proper encapsulation of the basket domain model. It serves as the system of record for the shopping intent of customers before this intent is transformed into an order through domain events.

The service implements several key domain operations:

  • Adding/removing items to the basket
  • Updating quantities of basket items
  • Managing the checkout process and transition to the Order bounded context

Following tactical DDD patterns, the basket is modeled as an aggregate root with basket items as entities within its boundary, ensuring consistency through transactional integrity and proper domain invariants.

Core Features

FeatureDescription
Get BasketRetrieves the current basket for an authenticated user, including all items and their quantities.
Add Item to BasketAllows customers to add items to their basket, with validation ensuring quantities are greater than zero.
Remove Item from BasketEnables customers to remove items from their basket, maintaining data consistency.
Update Item QuantitySupports customers in updating the quantity of items in their basket, with built-in validation.

Architecture diagram

Messages for this service

Sends messages (2)

Quickly find the message you need by searching for the name, type, or summary.
NameVersionTypeSummary
Deleted Basket Complete
v1.0.0eventRepresents a domain event that is published when reverse basket is completed
Deleted Basket Fail
v1.0.0eventRepresents a failed basket deletion event in the system

Receives messages (5)

Quickly find the message you need by searching for the name, type, or summary.
NameVersionTypeSummary
Update Basket
v1.0.0commandUpdate a basket
Delete Basket
v1.0.0commandDelete a basket by its unique identifier
Create Basket
v1.0.0commandCreate a new basket for a user
Placed Order
v1.0.0eventReceive a message when an order is placed

Key Concepts

Infrastructure

The Basket Service is deployed as a containerized application within the BookWorm ecosystem. It leverages cloud-native technologies for scalability and resilience, ensuring high availability and fault tolerance.

Loading graph...

The service is hosted on a cloud platform, utilizing Redis for high-performance data storage and container orchestration. This infrastructure setup enables seamless scaling and efficient resource utilization, supporting the dynamic demands of customer shopping activities.

Technical Implementation

The service is implemented in C# using:

  • gRPC for high-performance API communication
  • Redis for data persistence
  • Domain-Driven Design patterns for business logic
  • Built-in validation using Data Annotations
  • Dependency injection for loose coupling
  • Logging for observability and debugging